home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 3 / Cream of the Crop 3.iso / comm / wnos5src.zip / SWCONFIG.H < prev    next >
Text File  |  1993-08-09  |  2KB  |  46 lines

  1. /* Config.h file for switch.ka9q.ampr.org standalone IP router */
  2. #ifndef    NSESSIONS
  3.  
  4. /* Software options */
  5. #define    MAILBOX        1    /* Include SM0RGV mailbox server */
  6. #define    SERVERS        1    /* Include TCP servers */
  7. #define    TRACE        1    /* Include packet tracing code */
  8. #undef    RIP        1    /* Include RIP routing */
  9. #define    NSESSIONS    10    /* Number of interactive clients */
  10. #define DEFNSOCK    40    /* Default number of sockets */
  11. #define    MTHRESH        8192    /* Default memory threshold */
  12. #define    NROWS        25    /* Number of rows on screen */
  13. #define    NIBUFS        5    /* Number of interrupt buffers */
  14. #define    IBUFSIZE    2048    /* Size of interrupt buffers */
  15.  
  16. /* Hardware configuration */
  17. #undef    PC_EC        1    /* 3-Com 3C501 Ethernet controller */
  18. #define    SLIP        1    /* Serial line IP */
  19. #define    KISS        1    /* KISS TNC code */
  20. #define    HS        1    /* High speed (56kbps) modem driver */
  21. #undef    HAPN        1    /* Hamilton Area Packet Network driver code */
  22. #undef    EAGLE        1    /* Eagle card driver */
  23. #define    PACKET        1    /* FTP Software's Packet Driver interface */
  24. #undef    PC100        1    /* PAC-COM PC-100 driver code */
  25. #undef    NRS        1    /* NET/ROM async interface */
  26. #define    NETROM        1    /* NET/ROM network support */
  27. #undef    DRSI        1    /* DRSI PCPA slow-speed driver */
  28. #define    AXLINK        1    /* AX25 link connectivity code */
  29. #undef    SCC        1    /* PE1CHL generic scc driver */
  30. #define    ASY        1    /* Asynch driver code */
  31.  
  32. #if (defined(NRS))
  33. #undef    NETROM
  34. #define    NETROM        1    /* NRS implies NETROM */
  35. #endif
  36.  
  37. #if (defined(HS)||defined(NETROM)||defined(KISS)||defined(HAPN)||defined(EAGLE)||defined(PC100))
  38. #define    AX25        1    /* AX.25 subnet code */
  39. #endif
  40.  
  41. #if (defined(PC_EC) || defined(PACKET))
  42. #define    ETHER    1        /* Generic Ethernet code */
  43. #endif
  44.  
  45. #endif    /* NSESSIONS */
  46.